how to use JSON.parse().
JSON.parse()
1181
03-Jul-2018
Prakash nidhi Verma
03-Jul-2018JSON.parse() :
common use of JSON is exchange data from a web server.it's in form of string data type.
syntax:
var obj = JSON.parse('{ "name":"John", "age":30, "city":"New York"}');Ex : JSON from the server.